home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / isatty.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  944b  |  45 lines

  1. /* 
  2.  * isatty.c --
  3.  *
  4.  *    Procedure to map from Unix isatty system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/etc/RCS/isatty.c,v 1.1 88/07/14 14:08:01 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include <sgtty.h>
  15.  
  16. /*
  17.  *----------------------------------------------------------------------
  18.  *
  19.  * isatty --
  20.  *
  21.  *    Returns non-zero if the given file descriptor refers to a device
  22.  *    with terminal-like characteristics.
  23.  *
  24.  * Results:
  25.  *    Non-zero means fd has terminal-like behavior, zero means it
  26.  *    doesn't.
  27.  *
  28.  * Side effects:
  29.  *    None.
  30.  *
  31.  *----------------------------------------------------------------------
  32.  */
  33.  
  34. int
  35. isatty(fd)
  36.     int fd;                             /* stream identifier */
  37. {
  38.     struct sgttyb sgttyb;
  39.  
  40.     if (ioctl(fd, TIOCGETP, (char *) &sgttyb) == -1) {
  41.     return 0;
  42.     }
  43.     return 1;
  44. }
  45.